.form-field.error input {
    border-color: #ff3860;
}

.form-field.success input {
    border-color: #09c372;
}

/*body {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    min-height: 100vh;*/
/*}*/
/*.content {*/
/*    width: 960px;*/
/*    background: #f0f0f0;*/
/*    border: 1px solid #ccc;*/
/*    height: 2000px;*/
/*    margin: 20px auto;*/
/*}*/

/*.header{*/
/*    height: 50px;*/
/*    background-color: white;*/
/*    border: 1px solid #ccc;*/
/*    position: fixed;*/
/*    top:0px;*/
/*    width: 100%;*/
/*}*/
/*body .content{*/
/*    width: 690px;*/
/*    background: #f0f0f0;*/
/*    border: 1px solid #ccc;*/
/*}*/
.container{
    background: #fff;
    border-radius: 5px;
    padding: 25px 35px 10px 35px;
    overflow-y: auto;

}
.container .form-outer{
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
}
.form-outer form{
    display: flex;
    width: 400%;
}
.form-outer form .page{
    width: 25%;
    transition: margin-left 0.3s ease-in-out;
}

.form-outer form .page .button-next{
    width: 100%;
    height: 40px;
    margin-top: 20px;
    border: none;
    background: lightgrey;
    border-radius: 5px;
    color: black;
    font-weight: bold;
    font-size: 15px;
    transition: 0.3s ease;
}
.form-outer form .page .button-next:hover{
    background: #586ce4;
    color: white;
}
.form-outer form .page .button-prev{
    width: 100%;
    height: 44px;
    margin-top: 21px;
    border: none;
    background: lightgrey;
    border-radius: 5px;
    color: black;
    font-weight: bold;
    font-size: 15px;
    transition: 0.3s ease;
}
.form-outer form .page .button-prev:hover{
    background: #586ce4;
    color: white;
}
.form-outer form .page .button-submit{
    width: 100%;
    height: 45px;
    margin-top: 20px;
    border: none;
    background: lightgrey;
    border-radius: 5px;
    color: black;
    font-weight: bold;
    font-size: 15px;
    transition: 0.3s ease;
}
.form-outer form .page .button-submit:hover{
    background: #586ce4;
    color: white;
}
.progress-bar-log{
    display: flex;
    /*margin: 40px 0;*/
    background: #e0e4fc;
    /*border-radius: 5px;*/
    position: fixed;
    width: 100%;
    height: 60px;
    top: 0px;
    bottom: 50px;
    margin-bottom: 20px;

}

.content {
    max-height: 3000px;
    overflow-y: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 3.5em;
}
.progress-bar-log .step{
    position: relative;
    text-align: center;
    width: 100%;
}
.progress-bar-log .step p{
    font-size: 12px;
    font-weight: 500;
    color: white;
    margin-bottom: 3px;
    margin-top: 8px;
    transition: 0.2s;
}

.progress-bar-log .step p.active{
    color: #586ce4;

}

.progress-bar-log .step .bullet{
    height: 25px;
    width: 25px;
    border: 2px solid white;
    border-radius: 50px;
    display: inline-block;
    font-weight: 500;
    font-size: 12px;
    line-height: 25px;
    position: relative;
    transition: 0.2s;

}
.progress-bar-log .step:last-child .bullet:before,
.progress-bar-log .step:last-child .bullet:after{
    display: none;
}

.progress-bar-log .step .bullet.active{
    border-color: #586ce4;
    background: #586ce4;
}
.progress-bar-log .step .bullet:before,
.progress-bar-log .step .bullet:after{
    position: absolute;
    content: '';
    bottom: 5px;
    right: -210px;
    justify-content: center;
    height: 3px;
    width: 180px;
    background: white;

}
.progress-bar-log .step .bullet.active:after{
    background: #586ce4;
    transform: scaleX(0);
    transform-origin: left;
    animation: animate 0.3s linear forwards;
}
@keyframes animate {
    100%{
        transform: scaleX(1);
    }
}
.progress-bar-log .step .bullet span{
    font-weight: 500;
    font-size: 15px;
    line-height: 25px;
    position: absolute;
    left: 50%;
    top: -2px;
    transform: translateX(-50%);
}
.progress-bar-log .step .bullet.active span {
    display: none;
}
.progress-bar-log .step .check.active{
    display: block;
    color: #fff;

}
.progress-bar-log .step .check{
    position: absolute;
    left: 50%;
    top: 70%;
    font-size: 15px;
    transform: translate(-50%, -50%);
    display: none;
}
.form-field.error input {
    border-color: #ff3860;
}

.form-field.success input {
    border-color: #09c372;
}

.header{
    height: 50px;
    background-color: white;
    border: 1px solid #ccc;
    position: fixed;
    top:0px;
    width: 100%;
}
.content{
    width: 690px;
    background: #f0f0f0;
    border: 1px solid #ccc;
}

/* card information */

 .base-timer {
     position: relative;
     width: 80px;
     height: 80px;
 }

.base-timer__svg {
    transform: scaleX(-1);
}

.base-timer__circle {
    fill: none;
    stroke: none;
}

.base-timer__path-elapsed {
    stroke-width: 7px;
    stroke: grey;
}

.base-timer__path-remaining {
    stroke-width: 7px;
    stroke-linecap: round;
    transform: rotate(90deg);
    transform-origin: center;
    transition: 1s linear all;
    fill-rule: nonzero;
    stroke: currentColor;
}

.base-timer__path-remaining.green {
    color: rgb(65, 184, 131);
}

.base-timer__path-remaining.orange {
    color: orange;
}

.base-timer__path-remaining.red {
    color: red;
}

.base-timer__label {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

  #number-container, #securityCode-container {
      height: 38px;
  }

.flex-microform-focused {
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.shad{
    margin-top: 10px;
    box-shadow: 1px 1px 1px 1px #808080;
}
.centerX {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.roundedX{
    display: inline-block;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    text-align: center;
    border: 1px solid #C8C8C8;
}
.exp-wrapper {
    position: relative;
    border: 1px solid #aaa;
    border-radius: 3px;
    display: flex;
    justify-content: space-around;
    height: 38px;
    line-height: 36px;
    font-size: 14px;
}
.exp-wrappers {
    position: relative;
    border: 1px solid #aaa;
    display: flex;
    justify-content: space-around;
    height: 42px;
    line-height: 36px;
    font-size: 14px;
    font-family: Helvetica, Tahoma, calibri, sans-serif;
    color: #555;
}

.exp-wrapper:after {
    content: '/';
    position: absolute;
    left: 50%;
    margin-left: -10px;
    color: #aaa;
}

input.exp {
    float: left;
    font-family: Helvetica, Tahoma, calibri, sans-serif;
    border: 0;
    width: 30px;
    outline: none;
    appearance: none;
    font-size: 14px;
}
.requiredStars {
    color: red;
    font-size: 14px;
}
.textSize {
    font-size: 12px;
}



